home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / s / ep_fadeout-toggle.rexx < prev    next >
OS/2 REXX Batch file  |  1993-10-20  |  208b  |  16 lines

  1. /* EaglePlayer - toggles FadeOut */
  2.  
  3. address 'rexx_EP'
  4.  
  5. options results
  6. status G fad
  7.  
  8. if result == "no" then do
  9.     fadeout yes
  10.     say "FadeOut is now on !"
  11. end
  12. else do
  13.     fadeout no
  14.     say "FadeOut is now off !"
  15. end
  16.